home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
18
/
5
/
DISK1853.ZIP
/
SINCE.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-08-20
|
768b
|
26 lines
echo OFF
if "%1" == "" goto HELP
if NOT "%2" == "" goto USERFILE
echo B
echo Executing command: ASCOUT *.*+%1
echo Displaying files created or updated on or after %1...
ASCOUT *.*+%1
goto END
:USERFILE
echo B
echo Executing command: ASCOUT %1+%2
echo Displaying files matching %1 created or updated on or after %2...
ASCOUT %1+%2
goto END
:HELP
echo B
echo To find all files since a date, enter SINCE followed by date
echo Example: SINCE 12/31/88
echo To find only certain files since a date, enter filespec followed by date
echo Examples: SINCE FILENAME.EXT 12/31/89
echo SINCE *.COM 12/31/89
echo B
echo For further information, see DUHELP help program
:END
echo ON